home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 June / CHIP 2005-06.iso / program / grafik / myriad.exe / Disk1 / data1.cab / Intgclt_-_Common / vwdde.h < prev   
Encoding:
C/C++ Source or Header  |  2005-05-12  |  1.6 KB  |  42 lines

  1. //*************************************************************
  2. //  File name: vwdde.h
  3. //
  4. //  Purpose:   Header file for the Myriad DDE integration.
  5. //
  6. //*************************************************************
  7.  
  8. #ifndef INC_VWDDE_H
  9. #define INC_VWDDE_H
  10.  
  11. #ifdef STDCALL_EXPORT_STYLE
  12. #define ExportStyle WINAPI
  13. #else
  14. #define ExportStyle DllExport
  15. #endif /* STDCALL_EXPORT_STYLE */
  16.  
  17. #include "igcinc.h"
  18.  
  19. #define  MYRIAD_EXECUTABLE_NAME  "myriad32.exe"
  20.  
  21. /* External API routines */
  22. BOOL   ExportStyle ProcessExecutionString(char *pString);
  23. BOOL   ExportStyle ProcessOnetimeExecutionString(char *pString, BOOL bStartMyriad);
  24. BOOL   ExportStyle ProcessSyncExecutionString(char *pString);
  25. BOOL   ExportStyle ProcessExecutionCommand(ExecutionCommandType Command, void *pData);
  26. BOOL   ExportStyle ProcessOnetimeExecutionCommand(ExecutionCommandType Command, void *pData, BOOL bStartMyriad);
  27. BOOL   ExportStyle ProcessSyncExecutionCommand(ExecutionCommandType Command, void *pData);
  28. BOOL   ExportStyle StartAndInitServer(LPSTR ServerName);
  29. BOOL   ExportStyle CloseConversation(void);
  30. BOOL   ExportStyle InitServer(void);
  31. BOOL   ExportStyle InitServerWithService(LPCSTR ServiceName);
  32. BOOL   ExportStyle ServerIsExecuting(void);
  33. BOOL   ExportStyle IsServerUp(void);
  34. BOOL   ExportStyle CancelExec(void);
  35. BOOL   ExportStyle SetNotifyWindow(HWND hWnd);
  36. BOOL   ExportStyle SetServerName(LPSTR ServerName);
  37. DWORD  ExportStyle GetServerName(LPSTR ServerName, int MaxLength);
  38. DWORD  ExportStyle GetTopicName(LPSTR TopicName, int MaxLength);
  39. DWORD  ExportStyle GetItemName(LPSTR ItemName, int MaxLength);
  40.  
  41. #endif /* INC_VWDDE_H */
  42.